home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
msdos
/
viewers
/
hv12
/
src
/
logcalc.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-07-08
|
182b
|
11 lines
#include <math.h>
#include <stdio.h>
#include "mypow.h"
main()
{
int i;
for(i=1;i<256;i++)
printf("%d,",(int) (log((double)i/255.0)*(1L << PowInfBase)+0.5));
}